home *** CD-ROM | disk | FTP | other *** search
- /*
- ** $VER: amistart_modulebase.h 39.0 (15.03.01)
- **
- ** definition of AmiStartModuleBase
- **
- ** by Darius Brewka based on CLib37x by
- ** (C) Copyright 1996-98 Andreas R. Kleinert
- ** All Rights Reserved.
- */
-
- #ifndef AMISTART_MODULEBASE_H
- #define AMISTART_MODULEBASE_H
-
- #ifdef __MAXON__
- #ifndef EXEC_LIBRARIES_H
- #include <exec/libraries.h>
- #endif
- #else
- #ifndef EXEC_LIBRARIES
- #include <exec/libraries.h>
- #endif /* EXEC_LIBRARIES_H */
- #endif
-
- struct AmiStartModuleBase
- {
- struct Library exb_LibNode;
- SEGLISTPTR exb_SegList;
- struct ExecBase *exb_SysBase;
- struct IntuitionBase *exb_IntuitionBase;
- struct GfxBase *exb_GfxBase;
- struct DosBase *exb_DosBase;
- // struct Library *exb_MUIMasterBase;
- struct Library *exb_UtilityBase;
- };
-
- #endif /* AMISTART_MODULEBASE_H */
-